CallArgument

data class CallArgument(value: JsonElement?, unserializableValue: UnserializableValue?, objectId: RemoteObjectId?)

Represents function call argument. Either remote object id objectId, primitive value, unserializable primitive value or neither of (for undefined) them should be specified.

Constructors

CallArgument
Link copied to clipboard
fun CallArgument(value: JsonElement? = null, unserializableValue: UnserializableValue? = null, objectId: RemoteObjectId? = null)

Properties

objectId
Link copied to clipboard
val objectId: RemoteObjectId? = null
Remote object handle.
unserializableValue
Link copied to clipboard
val unserializableValue: UnserializableValue? = null
Primitive value which can not be JSON-stringified.
value
Link copied to clipboard
val value: JsonElement? = null
Primitive value or serializable javascript object.

Sources

jvm source
Link copied to clipboard